home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1996 April: Mac OS SDK / Dev.CD Apr 96 SDK / Dev.CD Apr 96 SDK1.toast / Development Kits (Disc 1) / OpenDoc Development Framework / ODFDev / ODF / OS / FWEvents / Include / FWODMiss.h < prev   
Encoding:
Text File  |  1995-11-08  |  1.1 KB  |  50 lines  |  [TEXT/MPS ]

  1. //========================================================================================
  2. //
  3. //    File:                FWODMiss.h
  4. //    Release Version:    $ 1.0d11 $
  5. //
  6. //    Copyright:    © 1995 by Apple Computer, Inc., all rights reserved.
  7. //
  8. //========================================================================================
  9.  
  10. // Contains various types missing in Windows version of OpenDoc (because
  11. //    it is a few releases behind the Macintosh one)
  12.  
  13. #ifndef FWODMISS_H
  14. #define FWODMISS_H
  15.  
  16. #if FW_OPENDOC_VERSION < FW_OPENDOC_DR2
  17.  
  18. // ----- OpenDoc Includes -----
  19.  
  20. #ifndef _ODTYPES_
  21. #include <ODTypes.h>
  22. #endif
  23.  
  24. class ODFrame;
  25. class ODFacet;
  26.  
  27. struct ODEventInfo
  28. {
  29.     ODFrame* embeddedFrame;
  30.     ODFacet* embeddedFacet;
  31.     ODPoint where;
  32.     ODBoolean propagated;
  33. };
  34.  
  35. #define kODEvtMouseEnter            (WM_USER + 0x100 + 0)
  36. #define kODEvtMouseWithin            (WM_USER + 0x100 + 1)
  37. #define kODEvtMouseLeave            (WM_USER + 0x100 + 2)
  38.  
  39. #define kODFrameObject                 "OpenDoc:ObjectType:Frame"
  40. #define kODNonPersistentFrameObject "OpenDoc:ObjectType:NonPersistentFrame"
  41.  
  42. #define kODDropIsMove                kODDropMove
  43.  
  44. #define kODNULLID                    0
  45.  
  46. #define kODPresDefault                "OpenDoc:Presentation:Default"
  47.  
  48. #endif
  49. #endif
  50.